home *** CD-ROM | disk | FTP | other *** search
- # -----------------------------------------------------------
- # Spezialmanoever fuer Sammler:
- # Manoever fuer Anflug der Garage
- #
- # ⌐ radon labs gmbh
- #
- # 08-Aug-00 af created
- # ------------------------------------------------------------
-
- # eine Root fuer Anflugmanoever
- new nroot sammler/gotogarage
- sel sammler/gotogarage
-
- # einfaches Anfliegen
- new ncommandlist goto
- goto.setadjusttype reach
- goto.settestcommand sgotogarage_test
- goto.addcommand true 0 0 -10 false 0 0 0 nothing 5.0
-
- proc sgotogarage_test {} {
-
- # nur 0.5 zurueck, anderes Script macht Entscheidung
- return 0.5
- }
-
- # Stures Aufsteigen, ohne Zielpunktbeachtung
- new ncommandlist rise
- rise.setadjusttype horimaneuver
- rise.settestcommand srise_test
- rise.addcommand true 0 10 0 false 0 0 0 nothing 4.0
-
- proc srise_test {} {
-
- # Wenn wir aufsteigen muessen, eine 1, sonst 0 zureuck
- set ziel [.gettargetpos]
- set pos [.getposition]
-
- set ziel_y [lindex $ziel 1]
- set pos_y [lindex $pos 1]
-
- if {[expr $ziel_y - $pos_y] > 1.0} {
- set retvalue 1.0
- } else {
- set retvalue 0.0
- }
-
- return $retvalue
- }
-
- sel ..
- sel ..
-
-